home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / libg_261.zip / libg_261 / libg++ / etc / lf / Makefile.in < prev    next >
Makefile  |  1993-04-19  |  700b  |  30 lines

  1. #
  2. #  Makefile for lf
  3. #
  4. #  If you move this makefile, update the variable below
  5. #  or else depend won't work.
  6.  
  7. MAKEFILE    = Makefile
  8.  
  9. CFILES        = lf.cc entry.cc screen.cc option.cc \
  10.                   directory.cc sort.cc Dirent.cc
  11. HFILES        = entry.h screen.h option.h \
  12.                   directory.h Dirent.h
  13. OFILES        = lf.o entry.o screen.o option.o \
  14.                   directory.o sort.o Dirent.o
  15. PROGRAM        = lf
  16. DEPEND_SOURCES    = $(srcdir)/*.cc
  17.  
  18. #### package, host, target, and site dependent Makefile fragments come in here.
  19. ##
  20.  
  21. $(PROGRAM): $(OFILES)
  22.     $(CXX) $(OFILES) -o $(PROGRAM) $(LIBS) -ltermcap
  23.  
  24. check: lf
  25.     @true
  26. # lf dies on Irix.  Perhaps incompatible directory routines?
  27. #    ./lf
  28.  
  29. run_tests: check
  30.